﻿/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: #0a0a14;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

    .preloader.hidden {
        opacity: 0;
        pointer-events: none;
    }

.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(245, 158, 11, 0.2);
    border-top-color: #0AADA6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
    background: #060610;
    padding: 0.6rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .topbar-item svg {
        width: 14px;
        height: 14px;
        stroke: #0AADA6;
        flex-shrink: 0;
    }

    .topbar-item a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s;
    }

        .topbar-item a:hover {
            color: #0AADA6;
        }

.topbar-socials {
    display: flex;
    gap: 0.75rem;
}

    .topbar-socials a {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

        .topbar-socials a:hover {
            background: #0AADA6;
            border-color: #0AADA6;
        }

        .topbar-socials a svg {
            width: 12px;
            height: 12px;
            stroke: #fff;
        }

/* ================================================
   HEADER
   ================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.header-inner {
    width: 100%;max-width:1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 42px;
    width: auto;
}

/* Desktop Nav */
.nav-list {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
    white-space: nowrap;
}

    .nav-link:hover,
    .nav-link-active {
        color: #0AADA6;
    }

    .nav-link svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s;
    }

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #12121f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s;
}

    .dropdown-link:hover {
        color: #0AADA6;
        background: rgba(245, 158, 11, 0.06);
        padding-left: 1.5rem;
    }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s;
    }

/* Mobile Nav */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

    .mobile-overlay.active {
        opacity: 1;
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #0d0d1a;
    z-index: 2001;
    padding: 1.5rem;
    overflow-y: auto;
    transition: right 0.35s ease;
}

    .mobile-nav.active {
        right: 0;
    }

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

    .mobile-nav-link svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s;
    }

    .mobile-nav-link.open svg {
        transform: rotate(180deg);
    }

.mobile-sub {
    display: none;
    padding-left: 1rem;
}

    .mobile-sub.open {
        display: block;
    }

.mobile-sub-link {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

    .mobile-sub-link:hover {
        color: #0AADA6;
    }

@media (max-width: 900px) {
    .nav-list {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-overlay,
    .mobile-nav {
        display: block;
    }

    .topbar-left {
        gap: 0.75rem;
        font-size: 0.72rem;
    }

    .topbar-socials {
        display: none;
    }
}

/* ================================================
   HERO SLIDER
   ================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 480px;
    max-height: 800px;
    overflow: hidden;
    background: #0a0a14;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.88) 0%, rgba(10, 10, 20, 0.45) 55%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    z-index: 3;
    max-width: 680px;
    padding: 0 2rem;
}

.hero-content-left {
    bottom: 14%;
    left: 6%;
}

.hero-content-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0AADA6;
    background: rgba(245, 158, 11, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1rem;
}

    .hero-title span {
        color: #0AADA6;
    }

.hero-divider {
    width: 60px;
    height: 3px;
    background: #0AADA6;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.hero-content-center .hero-divider {
    margin-left: auto;
    margin-right: auto;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-content-center .hero-actions {
    justify-content: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: #0AADA6;
    color: #0a0a14;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background: #fff;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    }

    .btn-primary svg {
        width: 16px;
        height: 16px;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-ghost svg {
        width: 18px;
        height: 18px;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-outline:hover {
        border-color: #0AADA6;
        color: #0AADA6;
    }

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: #0a0a14;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-dark:hover {
        background: #1a1a2e;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-dark svg {
        width: 16px;
        height: 16px;
    }

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 2.5rem;
    right: 6%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .hero-arrow:hover {
        background: #0AADA6;
        border-color: #0AADA6;
    }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

    .hero-dot.active {
        background: #0AADA6;
        border-color: #0AADA6;
        transform: scale(1.15);
    }

/* Slide Counter */
.hero-counter {
    position: absolute;
    bottom: 2.5rem;
    left: 6%;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.hero-counter-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0AADA6;
    line-height: 1;
}

.hero-counter-sep {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0.1rem;
}

.hero-counter-total {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-content-left {
        bottom: 18%;
        left: 4%;
    }

    .hero-controls {
        right: 4%;
        bottom: 1.5rem;
    }

    .hero-counter {
        left: 4%;
        bottom: 1.5rem;
    }

    .hero-counter-current {
        font-size: 1.8rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-dark {
    background: #0a0a14;
    color: #fff;
}

.section-light {
    background: #f8f9fc;
    color: #1a1a2e;
}

.section-padding {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-badge-light {
    color: #0AADA6;
    background: rgba(245, 158, 11, 0.1);
}

.section-badge-dark {
    color: #0AADA6;
    background: rgba(245, 158, 11, 0.12);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

    .section-title span,
    .section-title b {
        color: #0AADA6;
    }

.section-title-white {
    color: #fff;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #0AADA6;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1rem;
}

/* ================================================
   WELCOME SECTION (LIGHT)
   ================================================ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-img-wrap {
    border: 1px solid #000;
    position: relative;
}

.welcome-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px; 
}

.welcome-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 3px solid #0AADA6;
    border-radius: 12px;
    z-index: -1;
}

.welcome-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

    .welcome-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
        color: #444;
        line-height: 1.5;
    }

        .welcome-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #0AADA6;
        }

/* Experience Badge */
.experience-badge {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background: #0AADA6;
    color: #0a0a14;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.experience-badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin-top: 1rem;
    }
}

/* ================================================
   PRODUCTS SECTION (DARK)
   ================================================ */
.products-header {
    margin-bottom: 2.5rem;
}

.products-track-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.products-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.5rem 2rem;
}

    .products-track::-webkit-scrollbar {
        display: none;
    }

.product-card {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .product-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(245, 158, 11, 0.3);
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }

.product-card-img {
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.5rem;
}

    .product-card-body h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .product-card-body p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        margin-bottom: 1rem;
    }

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0AADA6;
    transition: gap 0.3s;
}

    .product-card-link:hover {
        gap: 0.75rem;
    }

    .product-card-link svg {
        width: 14px;
        height: 14px;
    }

.products-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
}

.products-track-wrapper:hover .products-arrow {
    opacity: 1;
}

.products-arrow:hover {
    background: #0AADA6;
    border-color: #0AADA6;
}

.products-arrow svg {
    width: 16px;
    height: 16px;
}

.products-arrow-left {
    left: 0.5rem;
}

.products-arrow-right {
    right: 0.5rem;
}

.products-badge {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #0AADA6;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    text-align: center;
}

.products-badge-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.products-badge-text {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .products-arrow {
        display: none;
    }

    .product-card {
        width: 260px;
    }

    .products-badge {
        position: relative;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin-top: 1.5rem;
    }
}

/* ================================================
   FACTS / STATS SECTION
   ================================================ */
.facts {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.facts-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.facts-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.88);
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facts-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.facts-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.facts-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 420px;
}

    .facts-desc strong {
        color: #0AADA6;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: #0AADA6;
}

.stat-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0.75rem auto;
    border-radius: 2px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .facts-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ================================================
   CLIENTS CAROUSEL
   ================================================ */
.clients {
    padding: 4rem 0;
    background: #060610;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.clients-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-top: 0.5rem;
}

.clients-track-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.clients-slide {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0.5rem 0;
}

.clients-slide-left {
    margin-bottom: 1.25rem;
    animation: scroll-left 40s linear infinite;
}

.clients-slide-right {
    animation: scroll-right 45s linear infinite;
}

.clients-track-wrapper:hover .clients-slide-left,
.clients-track-wrapper:hover .clients-slide-right {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.client-item {
    flex-shrink: 0;
    width: 170px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.35s ease;
}

    .client-item:hover {
         border-color: rgba(245, 158, 11, 0.35);
        transform: translateY(-2px);
    }

    .client-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
         opacity: 0.5;
        transition: all 0.35s ease;
    }

    .client-item:hover img {
         opacity: 1;
    }

@media (max-width: 600px) {
    .client-item {
        width: 130px;
        height: 120px;
    }
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0a0a14;
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 1rem;
    color: #666;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer-main {
    background: #060610;
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 3rem;
}

.footer-about .logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

    .footer-about .logo-text span {
        color: #0AADA6;
        font-weight: 400;
    }

.footer-about p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0AADA6;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.2s;
}

    .footer-links a:hover {
        color: #0AADA6;
        padding-left: 4px;
    }

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        stroke: #0AADA6;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .footer-contact-item p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.5;
    }

    .footer-contact-item a {
        color: rgba(255, 255, 255, 0.45);
        transition: color 0.2s;
    }

        .footer-contact-item a:hover {
            color: #0AADA6;
        }

/* Copyright */
.copyright {
    background: #040409;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

    .copyright-text a {
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s;
    }

        .copyright-text a:hover {
            color: #0AADA6;
        }

.copyright-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .copyright-logos img {
        height: 32px;
        width: auto;
        opacity: 0.5;
        transition: opacity 0.3s;
    }

        .copyright-logos img:hover {
            opacity: 1;
        }

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .copyright-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
/* ================================================
   VISION / CORE BLOCKS
   ================================================ */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vision-block {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-block-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .vision-block-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: rgba(255,255,255,0.5);
    }

.vision-block-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 400px;
}

@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-block {
        padding: 2rem 1.5rem;
    }
}

/* ================================================
   TIMELINE
   ================================================ */
.timeline {
    position: relative;
    padding-left: 120px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 54px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(245, 158, 11, 0.2);
    }

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -70px;
        top: 4px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #05ADA6;
        border: 3px solid #0a0a14;
        z-index: 2;
    }

.timeline-year {
    position: absolute;
    left: -120px;
    top: -2px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #05ADA6;
    width: 50px;
    text-align: right;
}

.timeline-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

    .timeline-content:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(245, 158, 11, 0.25);
    }

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.timeline-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .timeline {
        padding-left: 0;
    }

        .timeline::before {
            left: 12px;
        }

    .timeline-item::before {
        left: -24px;
    }

    .timeline-year {
        left: auto;
        position: relative;
        top: auto;
        text-align: left;
        margin-bottom: 0.5rem;
        width: auto;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }
}

/* ================================================
   MANUFACTURING CARDS
   ================================================ */
.mfg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mfg-card {
    position: relative;
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
}

    .mfg-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        border-color: rgba(245, 158, 11, 0.3);
    }

.mfg-card-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1;
}

.mfg-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f0f1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    padding: 1.25rem;
}

    .mfg-card-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.mfg-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.mfg-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mfg-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ================================================
   TESTING SECTION
   ================================================ */
.testing-grid {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.testing-list {
    list-style: none;
    padding: 0;
}

    .testing-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.55rem 0;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        line-height: 1.5;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

        .testing-list li svg {
            width: 16px;
            height: 16px;
            stroke: #05ADA6;
            flex-shrink: 0;
            margin-top: 2px;
        }

.testing-img-col {
    border-radius: 12px;
    overflow: hidden;
}

    .testing-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

@media (max-width: 900px) {
    .testing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testing-img-col {
        display: none;
    }
}

@media (max-width: 600px) {
    .testing-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================================
   PAGE BANNER
   ================================================ */
.pg-banner {
    position: relative;
    width: 100%;
    height: 420px;
    min-height: 320px;
    overflow: hidden;
    background: #0a0a14;
}

.pg-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.pg-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(10, 10, 20, 0.92) 0%, rgba(10, 10, 20, 0.65) 50%, rgba(10, 10, 20, 0.3) 100% );
    z-index: 2;
}

.pg-banner-content {
    position: absolute;
    z-index: 3;
    bottom: 15%;
    left: 6%;
    max-width: 650px;
    padding: 0 1.5rem;
}

.pg-banner-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    background: #0AADA6;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pg-banner-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.pg-banner-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.pg-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.8rem;
}

    .pg-breadcrumb a {
        color: rgba(255, 255, 255, 0.45);
        transition: color 0.25s;
    }

        .pg-breadcrumb a:hover {
            color: #05ADA6;
        }

    .pg-breadcrumb span {
        color: rgba(255, 255, 255, 0.35);
    }

.pg-breadcrumb-sep {
    margin: 0 0.5rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .pg-banner {
        height: 340px;
        min-height: 280px;
    }

    .pg-banner-content {
        bottom: 12%;
        left: 4%;
        right: 4%;
    }

    .pg-banner-title {
        font-size: 1.8rem;
    }

    .pg-banner-desc {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pg-breadcrumb {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .pg-banner {
        height: 300px;
        min-height: 250px;
    }

    .pg-banner-title {
        font-size: 1.5rem;
    }

    .pg-banner-content {
        bottom: 10%;
    }

    .pg-banner-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.9rem;
    }
}
/* ================================================
   CLIENTS LOGO GRID
   ================================================ */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.client-logo-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 1.75rem 1.25rem 1.25rem;
    text-align: center;
    transition: all 0.35s ease;
}

    .client-logo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        border-color: rgba(245, 158, 11, 0.3);
    }

.client-logo-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f5f6f8;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.client-logo-card:hover .client-logo-img {
    background: #fff;
}

.client-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.7;
    transition: all 0.35s ease;
}

.client-logo-card:hover .client-logo-img img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.client-logo-card h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .client-logo-img {
        height: 80px;
        padding: 0.75rem;
    }

    .client-logo-card {
        padding: 1.25rem 1rem 1rem;
    }

        .client-logo-card h4 {
            font-size: 0.75rem;
        }
}
/* ================================================
   PRODUCT GRID (replaces mfg-grid from the about-us page)
   ================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        border-color: rgba(245, 158, 11, 0.3);
    }

.product-card-img {
    height: 200px;
    overflow: hidden;
    background: #f5f6f8;
    border-radius: 10px 10px 0 0;
    margin: 0 1rem;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.25rem 1.25rem 1.25rem;
}

    .product-card-body h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 0.4rem;
    }

    .product-card-body p {
        font-size: 0.82rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f59e0b;
    transition: gap 0.3s ease;
    border: 1.5px solid #f59e0b;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    background: transparent;
}

    .product-card-link:hover {
        gap: 0.7rem;
        background: #f59e0b;
        color: #fff;
        border-color: #f59e0b;
    }

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1rem 1rem 1rem;
    }

    .product-card-img {
        height: 160px;
        margin: 0 0.5rem;
    }

    .product-card-body h3 {
        font-size: 0.9rem;
    }

    .product-card-body p {
        font-size: 0.78rem;
    }

    .product-card-link {
        font-size: 0.75rem;
    }
}